com.supermap.realspace

Class StopArrivedEvent

  • java.lang.Object
    • java.util.EventObject
      • com.supermap.realspace.StopArrivedEvent
  • All Implemented Interfaces:
    java.io.Serializable


    public class StopArrivedEvent
    extends java.util.EventObject
    Arrived at the site event.

    This event is triggered when the flight arrives at the site.

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor and Description
      StopArrivedEvent(java.lang.Object source, Route route, RouteStop routeStop)
      Constructs a new object of StopArrivedEvent based on the specified parameters.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      Route getRoute()
      Return to the flight path object.
      RouteStop getRouteStop()
      Return to the flight site object.
      • Methods inherited from class java.util.EventObject

        getSource, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • StopArrivedEvent

        public StopArrivedEvent(java.lang.Object source,
                                Route route,
                                RouteStop routeStop)
        Constructs a new object of StopArrivedEvent based on the specified parameters.
        Parameters:
        source - The object that initiated the event.
        route - The specified flight path object.
        routeStop - The specified flight site object.
    • Method Detail

      • getRoute

        public Route getRoute()
        Return to the flight path object.
        Returns:
        Flight route object.
      • getRouteStop

        public RouteStop getRouteStop()
        Return to the flight site object.
        Returns:
        Flight site object.